
.security-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
    color: #000;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .section-header h2 span {
    color: #00b894;
  }
  
  .section-header p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    
  }
  
  .feature-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    
  }
  
  .feature-card img {
    width: 80px;
    margin-bottom: 20px;
  }
  
  .feature-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  .feature-card p {
    color: #666;
    font-size: 0.95rem;
  }
  











  .card-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
  }
  
  .card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 30px;
    width: 300px;
    text-align: center;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    animation: fadeUp 1s forwards;
    cursor: pointer;
  }
  
  .card img {
    width: 80px;
    margin-bottom: 20px;
  }
  
  .card h3 {
    margin-bottom: 10px;
    color: #333;
  }
  
  .card p {
    color: #666;
  }
  
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.2);
  }
  
  .card-left {
    animation: slideLeft 1s ease-out forwards;
  }
  
  .card-right {
    animation: slideRight 1s ease-out forwards;
  }
  
  /* Animations */
  @keyframes slideLeft {
    0% {
      transform: translateX(-100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideRight {
    0% {
      transform: translateX(100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  